home *** CD-ROM | disk | FTP | other *** search
- --------------------------------------------------------------------------------
- -- Carnage Contest Game Mode Script
- -- Script by DC, September 2010, www.UnrealSoftware.de
- --------------------------------------------------------------------------------
-
- addgamemode("nodmg","No Damage")
-
- function nodmg_gm_draw()
- -- Do nothing
- end
-
- function nodmg_gm_update()
- -- Do nothing
- end
-
- function nodmg_gm_playerdamage()
- -- Skip Damage Process!
- return -1
- end
-